home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / ada / gnat1792.zip / gnat179b / t-adainc / s-stoele.adb < prev    next >
Text File  |  1994-05-19  |  3KB  |  68 lines

  1. ------------------------------------------------------------------------------
  2. --                                                                          --
  3. --                         GNAT COMPILER COMPONENTS                         --
  4. --                                                                          --
  5. --               S Y S T E M . S T O R A G E _ E L E M E N T S              --
  6. --                                                                          --
  7. --                                 B o d y                                  --
  8. --                                                                          --
  9. --                            $Revision: 1.4 $                              --
  10. --                                                                          --
  11. --           Copyright (c) 1992,1993,1994 NYU, All Rights Reserved          --
  12. --                                                                          --
  13. -- GNAT is free software;  you can  redistribute it  and/or modify it under --
  14. -- terms of the  GNU General Public License as published  by the Free Soft- --
  15. -- ware  Foundation;  either version 2,  or (at your option) any later ver- --
  16. -- sion.  GNAT is distributed in the hope that it will be useful, but WITH- --
  17. -- OUT ANY WARRANTY;  without even the  implied warranty of MERCHANTABILITY --
  18. -- or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License --
  19. -- for  more details.  You should have  received  a copy of the GNU General --
  20. -- Public License  distributed with GNAT;  see file COPYING.  If not, write --
  21. -- to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. --
  22. --                                                                          --
  23. ------------------------------------------------------------------------------
  24.  
  25. package body System.Storage_Elements is
  26.  
  27.    --  Address arithmetic
  28.  
  29.    function "+" (Left : Address; Right : Storage_Offset) return Address is
  30.    begin
  31.       return Left + Address (Right);
  32.    end "+";
  33.  
  34.    function "+" (Left : Storage_Offset; Right : Address) return Address is
  35.    begin
  36.       return Address (Left) + Right;
  37.    end "+";
  38.  
  39.    function "-" (Left : Address; Right : Storage_Offset) return Address is
  40.    begin
  41.       return Left - Address (Right);
  42.    end "-";
  43.  
  44.    function "-" (Left, Right : Address) return Storage_Offset is
  45.    begin
  46.       return Storage_Offset (Left) - Storage_Offset (Right);
  47.    end "-";
  48.  
  49.    function "mod" (Left : Address; Right : Storage_Offset)
  50.      return Storage_Offset is
  51.    begin
  52.       return Storage_Offset (Left) mod Right;
  53.    end "mod";
  54.  
  55.    --  Conversion to/from integers
  56.  
  57.    function To_Address (Value : Integer_Address) return Address is
  58.    begin
  59.       return Address (Value);
  60.    end To_Address;
  61.  
  62.    function To_Integer (Value : Address) return Integer_Address is
  63.    begin
  64.       return Integer_Address (Value);
  65.    end To_Integer;
  66.  
  67. end System.Storage_Elements;
  68.